home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SUPER.ZIP / SUPER.DOC next >
Text File  |  1992-09-03  |  5KB  |  117 lines

  1. SUPER.ZIP
  2.  
  3. Title   : SUPER.EXE: switch SUPERVISOR equivalence on/off
  4. Keywords: SUPERVISOR EQUIVALENCE RIGHTS SECURITY UTILITY
  5.  
  6. SUPER.EXE allows to switch SV equivalence on/off when needed. Do 
  7. your daily work as normal user, and be SV only when needed. Includes 
  8. DOS and Windows version. No security gap, since you  have to be SV 
  9. equivalence to initialize SUPER for you.  
  10.  
  11. Uploaded by author: Wolfgang Schreiber
  12.  
  13.  
  14.  
  15. SUPER.EXE  (DOS version)
  16.  
  17. Syntax:   SUPER [option] [User=<name>]
  18.           If no user name is added SUPER will affect the current user
  19.  
  20. Available options:
  21.     ?       Display this help screen
  22.     <none>  Display current security status
  23.     -       Remove supervisor equivalence, enable SUPER
  24.     +       Make user equivalent to supervisor
  25.     #       Remove supervisor equivalence and disable SUPER
  26.     *       Grant supervisor equivalence and disable SUPER
  27.     <cmd>   Execute any command as supervisor (NW 386 only)
  28.  
  29. Examples: SUPER -             Remove SV equivalence and make it switchable.
  30.           SUPER +             Add SV equivalence and leave it switchable.
  31.           SUPER + User=Admin  Make user ADMIN SV equivalence; make switchable.
  32.           SUPER SYSCON        Execute SYSCON as supervisor.
  33.  
  34. Program history / New Features
  35.      Aug 92: - Allow to run SUPER against another user's account.
  36.      Sep 92: - Allow to run BATCH files and internal DOS commands
  37.              - Output redirectable with DOS pipes 
  38.  
  39.  
  40.  
  41. SUPER.EXE (Windows version)
  42.  
  43. The Windows versions displays the SUPER status of up to 8 servers at 
  44. a single glance.  Nice icon, but limitations: not applicable to 
  45. other users & no commands executable with temp SV rights.
  46.  
  47.  
  48.     
  49. Background:
  50.          "SUPER -" will modify the security byte of your bindery property
  51.          SECURITY_EQUALS to 0x22  (read/write object).  This allows the
  52.          user to change his/her own security equivalences.
  53.          Then the Supervisor equivalence is removed.
  54.  
  55.          Since the user may change the equivalences now, he/she can later add 
  56.          Supervisor equivalence with "SUPER +" when needed.
  57.          "SUPER <command>" will first add Supervisor equivalence, then 
  58.          execute the command, and finally remove Supervisor equivalence.
  59.  
  60.          SUPER allows a user who in Supervisor equivalent to do the daily work
  61.          as normal user, while Supervisor equivalence is available when needed.
  62.          This reduces the risk of accidental damage to files caused by 
  63.          carelessness, unattended workstations, or viruses.
  64.  
  65.  
  66. This program was written by Wolfgang Schreiber in Borland's Turbo Pascal.
  67.  
  68.  
  69.  
  70.  
  71. Hints, Internals, Security and Warnings:
  72.  
  73. SECURITY.EXE brings a warning: 
  74.     'Has incorrect access security on the SECURITY_EQUALS property'.
  75.  
  76. BINDFIX warns:
  77.     'Warning: Object <name> property SECURITY_EQUALS has incorrect 
  78.     security flags.'
  79.  
  80. Basically, for each user there is a standard property in the bindery 
  81. associated with the user called SECURITY_EQUALS, which contains a 
  82. list of users and groups to which that user has security equivalence.
  83.  
  84. When a user is created, the rights to this property are Supervisor 
  85. Write (meaning that only a supervisor equivalent can grant or change 
  86. equivalences) and User Read (meaning that a user can read their own 
  87. equivalences). The supervisor also has the ability to change the 
  88. rights mask to this property.
  89.  
  90. This is what SUPER.EXE does ... it changes the rights mask for a 
  91. user (can only be done by somebody with supervisor equivalence) so 
  92. that the user then can add their own security equivalences.
  93.  
  94. "SUPER -" will modify the security byte of your bindery property 
  95. SECURITY_EQUALS to 0x22 (read/write object).  This allows the user 
  96. to change his/her own security equivalences.
  97.  
  98. SUPER allows a user who is Supervisor equivalent to do the daily 
  99. work as normal user, while Supervisor equivalence is available when 
  100. needed.  This reduces the risk of accidental damage to files caused 
  101. by carelessness, unattended workstations, or viruses.
  102.  
  103.  
  104. SOLUTION
  105.  
  106. The warnings are expected and desired in combination with SUPER 
  107. since a supervisor should be informed about the existence of other 
  108. supervisors - even with modified security access flags.
  109.  
  110. If the users that were highlighted in SECURITY or BINDFIX did NOT 
  111. use SUPER there might be a severe security gap.
  112.  
  113. SUPER and WSUPER have parameters that allow resetting the bindery 
  114. flag to it's original state - obviously this will prevent these 
  115. users from receiving SV equivalence with SUPER.
  116.  
  117.